﻿/* ===== NAV (your existing design) ===== */
#nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav > ul {
    display: flex;
}

#nav li {
    position: relative;
}

#nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    transition: background .25s;
}

#nav > ul > li > a {
    font-weight: 600;
}

#nav li a:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ===== DROPDOWN (unchanged behavior) ===== */
.drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    z-index: 1000;
}

#nav li:hover > .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* dropdown links */
#nav .drop a,
#nav .sub a {
    color: #333;
    padding: 11px 20px;
    font-size: 14.5px;
}

    #nav .drop a:hover,
    #nav .sub a:hover {
        background: #f2f5f9;
    }

/* ===== SUBMENU (new — flys out to the right) ===== */
.sub {
    position: absolute;
    top: -8px;
    left: 100%;
    min-width: 250px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: all .25s ease;
    z-index: 1001;
}

#nav li:hover > .sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* arrow on items that have a submenu */
.sub-arrow {
    margin-left: auto;
    font-size: 11px;
    opacity: .55;
}
#nav > ul > li:last-child .sub,
#nav > ul > li:nth-last-child(2) .sub {
    left: auto;
    right: 100%;
    transform: translateX(-12px);
}

#nav > ul > li:last-child li:hover > .sub,
#nav > ul > li:nth-last-child(2) li:hover > .sub {
    transform: translateX(0);
}/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #000;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
    color: #000;
}
/* ---- Drinking System section (scoped under .dh-drink so it won't clash with other pages) ---- */
.dh-drink {
    padding: 80px 20px;
    width: 100%;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

    .dh-drink .dh-wrap {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Section heading (reuses your dh-sechead classes; scoped here as a safe fallback) */
    .dh-drink .dh-sechead {
        text-align: center;
        margin-bottom: 30px;
    }

        .dh-drink .dh-sechead span {
            display: inline-block;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #2e7d32;
            margin-bottom: 8px;
        }

        .dh-drink .dh-sechead h2 {
            font-size: 32px;
            margin: 0;
            color: #222;
        }

    .dh-drink .dh-sbar {
        width: 70px;
        height: 4px;
        background: #2e7d32;
        margin: 15px auto 0;
        border-radius: 2px;
    }
/* ---- Vertical Farming section (scoped under .dh-vf) ---- */
.dh-vf {
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: Arial, Helvetica, sans-serif;
}

    .dh-vf .dh-wrap {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Section heading */
    .dh-vf .dh-sechead {
        text-align: center;
        margin-bottom: 30px;
    }

        .dh-vf .dh-sechead span {
            display: inline-block;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #2e7d32;
            margin-bottom: 8px;
        }

        .dh-vf .dh-sechead h2 {
            font-size: 32px;
            margin: 0;
            color: #222;
        }

    .dh-vf .dh-sbar {
        width: 70px;
        height: 4px;
        background: #2e7d32;
        margin: 15px auto 0;
        border-radius: 2px;
    }

/* Intro text */
.dh-vf-intro {
    max-width: 1100px;
    margin: 0 auto 35px;
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

    .dh-vf-intro strong {
        color: #222;
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }

/* Buttons */
.dh-vf-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.dh-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dh-btn-primary {
    background: #2e7d32;
    color: #ffffff;
    border: 2px solid #2e7d32;
}

    .dh-btn-primary:hover {
        background: #1b5e20;
        border-color: #1b5e20;
    }

.dh-btn-outline {
    background: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

    .dh-btn-outline:hover {
        background: #2e7d32;
        color: #ffffff;
    }

/* Feature list */
.dh-vf-features {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto 55px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 35px;
}

    .dh-vf-features li {
        position: relative;
        padding-left: 32px;
        color: #555;
        font-size: 15px;
        line-height: 1.65;
    }

        .dh-vf-features li::before {
            content: "\2713"; /* checkmark */
            position: absolute;
            left: 0;
            top: 1px;
            width: 22px;
            height: 22px;
            background: #2e7d32;
            color: #fff;
            border-radius: 50%;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dh-vf-features li strong {
            color: #222;
        }

/* Category cards */
.dh-vf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dh-vf-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

    .dh-vf-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
        border-color: #2e7d32;
    }

    .dh-vf-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }

    .dh-vf-card h3 {
        margin: 0;
        padding: 18px 15px;
        font-size: 19px;
        color: #222;
    }

    .dh-vf-card:hover h3 {
        color: #2e7d32;
    }

/* Mobile tweaks */
@media (max-width: 768px) {
    .dh-vf-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .dh-vf {
        padding: 55px 15px;
    }

        .dh-vf .dh-sechead h2 {
            font-size: 26px;
        }

    .dh-vf-card img {
        height: 200px;
    }
}
/* Intro text */
.dh-drink-intro {
    max-width: 1100px;
    margin: 0 auto 35px;
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

    .dh-drink-intro strong {
        color: #222;
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }

/* Buttons */
.dh-drink-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 55px;
}

.dh-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dh-btn-primary {
    background: #2e7d32;
    color: #ffffff;
    border: 2px solid #2e7d32;
}

    .dh-btn-primary:hover {
        background: #1b5e20;
        border-color: #1b5e20;
    }

.dh-btn-outline {
    background: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

    .dh-btn-outline:hover {
        background: #2e7d32;
        color: #ffffff;
    }

/* Product cards grid */
.dh-drink-grid {
    display: grid; width:1100px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dh-drink-card {
    background: #f9f9f9;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

    .dh-drink-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
        border-color: #2e7d32;
    }

    .dh-drink-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }

    .dh-drink-card h3 {
        margin: 0;
        padding: 18px 15px;
        font-size: 19px;
        color: #222;
    }

    .dh-drink-card:hover h3 {
        color: #2e7d32;
    }

/* Mobile tweaks */
@media (max-width: 576px) {
    .dh-drink {
        padding: 55px 15px;
    }

        .dh-drink .dh-sechead h2 {
            font-size: 26px;
        }

    .dh-drink-card img {
        height: 200px;
    }
}
   
.dh-seo {
    padding: 70px 0;
    background: #f6faf7;
}

.dh-seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}

    .dh-seo-tags a {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 50px;
        background: #fff;
        border: 1px solid #dcebe1;
        color: #14532d;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: .3s;
    }

        .dh-seo-tags a:hover {
            background: #00A859;
            color: #fff;
            border-color: #00A859;
            transform: translateY(-3px);
        }
/* ============================================================
   NEW — EZYPAN BROILER PAGE ONLY
   (Reuses: dh-hero, dh-stats, dh-turnkey, dh-features, dh-specs,
   dh-best, dh-diagram, dh-seo + dh-ficon, dh-bitem, dh-table)
   ============================================================ */

/* ---- 1. Numbered process steps (How It Works) ---- */
.dh-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 48px;
}

.dh-step {
    position: relative;
    background: #fff;
    border: 1px solid #e2eee7;
    border-radius: 16px;
    padding: 40px 26px 30px;
    text-align: center;
    transition: .3s ease;
}

    .dh-step:hover {
        transform: translateY(-6px);
        border-color: #00A859;
        box-shadow: 0 14px 30px rgba(0, 168, 89, .15);
    }

/* green numbered badge floating on top edge */
.dh-stepnum {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #00A859;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 168, 89, .35);
}

.dh-step .dh-ficon {
    margin: 4px auto 18px;
}

.dh-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #12331f;
    margin-bottom: 8px;
}

.dh-step p {
    font-size: 14px;
    color: #5b6b62;
    line-height: 1.6;
    margin: 0;
}

/* ---- 2. Advantages checklist ---- */
.dh-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px 30px;
    margin-top: 40px;
    padding: 0;
}

    .dh-checklist li {
        list-style: none;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        background: #fff;
        border: 1px solid #e2eee7;
        border-radius: 12px;
        padding: 18px 22px;
        font-size: 15px;
        line-height: 1.65;
        color: #3d4a42;
        transition: .3s ease;
    }

        .dh-checklist li:hover {
            border-color: #00A859;
            box-shadow: 0 8px 20px rgba(0, 168, 89, .1);
        }

        .dh-checklist li i {
            color: #00A859;
            font-size: 17px;
            margin-top: 3px;
        }

        .dh-checklist li b {
            color: #14532d;
        }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .dh-steps {
        gap: 34px;
        margin-top: 40px;
    }

    .dh-checklist {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
}
/* OPTIONAL — model name label on gallery items */
.dh-gitem {
    position: relative;
}

    .dh-gitem span {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: rgba(5, 53, 31, .82);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 8px 12px;
        border-radius: 8px;
        text-align: center;
    }
/* ============================================================
   NEW — FACE SHIELD PAGE IMAGE LAYOUTS
   ============================================================ */

/* ---- Alternate section background (light gray band, as in design) ---- */
.dh-bgalt {
    background: #f4f7f5;
}

/* ---- 1. Split : checklist LEFT + circular model photos RIGHT ---- */
.dh-splitimg {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 44px;
}

.dh-worn {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

    .dh-worn img {
        width: 220px;
        height: 220px;
        border-radius: 50%; /* circular photos as in design */
        object-fit: cover;
        border: 5px solid #fff;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
    }

/* ---- 2. Trio : Guidelines | product images | Triple Protection ---- */
.dh-trio {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 44px;
    align-items: center;
    margin-top: 44px;
}

.dh-trioimgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .dh-trioimgs img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
    }

/* green column headings (Guidelines / Triple Protection / Applications / Packing) */
.dh-h3green {
    color: #00A859;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ---- 3. Diagram row : technical image LEFT + worn photo + hashtag RIGHT ---- */
.dh-diagrow {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 44px;
}

.dh-worn {
    text-align: center;
}

.dh-worn-img {
    width: 100%;
    max-width: 340px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* red hashtag — uses Dhumal logo red */
.dh-hashtag {
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #ED3237;
    letter-spacing: -0.5px;
}

/* ---- 4. Two columns : Applications | Packing Size ---- */
.dh-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 44px;
}

/* ---- SEO paragraph under sections (small muted text) ---- */
.dh-seotext {
    margin-top: 34px;
    text-align: center;
    font-size: 15px;
    color: #7a8781;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* checklist items smaller inside split/trio/twocol blocks */
.dh-splitimg .dh-checklist li,
.dh-triocol .dh-checklist li,
.dh-twocol .dh-checklist li {
    padding: 10px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

    .dh-splitimg .dh-checklist li:hover,
    .dh-triocol .dh-checklist li:hover,
    .dh-twocol .dh-checklist li:hover {
        box-shadow: none;
    }

    .dh-splitimg .dh-checklist li i,
    .dh-triocol .dh-checklist li i,
    .dh-twocol .dh-checklist li i {
        color: #00A859; /* green ticks like design */
    }

/* small text inside packing list */
.dh-twocol .dh-checklist small {
    color: #7a8781;
    font-size: 13.5px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .dh-trio {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dh-trioimgs {
        order: -1; /* product images first on mobile */
        max-width: 480px;
        margin: auto;
    }

    .dh-diagrow {
        grid-template-columns: 1fr;
    }

    .dh-worn {
        order: -1;
    }
}

@media (max-width: 768px) {
    .dh-splitimg {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .dh-worn img {
        width: 160px;
        height: 160px;
    }

    .dh-twocol {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dh-h3green {
        font-size: 20px;
    }
}/* ---- Colors ---- */
.dh-colors {
    padding: 70px 0;
}

.dh-cgrid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dh-color {
    text-align: center;
}

.dh-swatch {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 4px solid #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    transition: .3s;
}

.dh-color:hover .dh-swatch {
    transform: scale(1.1) translateY(-4px);
}

.dh-cw {
    background: #f4f6f8;
}

.dh-cg {
    background: #2e7d4f;
}

.dh-cr {
    background: #c62828;
}

.dh-color strong {
    display: block;
    color: var(--dark);
    font-size: .95rem;
}

.dh-color small {
    color: #8a8a8a;
    font-size: .8rem;
    letter-spacing: 1px;
}

/* ---- Profiles ---- */
.dh-profiles {
    padding: 70px 0;
    background: var(--light);
}

.dh-pcard {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22,50,79,.1);
    margin-bottom: 35px;
}

    .dh-pcard:last-child {
        margin-bottom: 0;
    }

    .dh-pcard .dh-pimg {
        position: relative;
        min-height: 300px;
    }

        .dh-pcard .dh-pimg img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dh-pcard .dh-pimg span {
            position: absolute;
            bottom: 14px;
            left: 14px;
            background: var(--p);
            color: #fff;
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
        }

    .dh-pcard .dh-pbody {
        padding: 36px 40px !important;
    }

    .dh-pcard h3 {
        color: var(--dark);
        font-size: 1.45rem;
        margin-bottom: 12px;
    }

        .dh-pcard h3 em {
            font-style: normal;
            color: var(--p);
        }

    .dh-pcard .dh-pdesc {
        font-size: .92rem;
        margin-bottom: 20px;
    }

        .dh-pcard .dh-pdesc strong {
            color: var(--dark);
        }

.dh-pspecs {
    list-style: none;
}

    .dh-pspecs li {
        display: flex;
        gap: 10px;
        font-size: .88rem;
        padding: 8px 0;
        border-bottom: 1px dashed #e2e8f0;
    }

        .dh-pspecs li:last-child {
            border-bottom: none;
        }

        .dh-pspecs li i {
            color: var(--p);
            margin-top: 6px;
            font-size: .8rem;
        }

        .dh-pspecs li strong {
            color: var(--dark);
            font-weight: 600;
            min-width: 190px;
        }
/* ---- Model cards ---- */
.dh-models {
    padding: 70px 0;
    background: var(--light);
}

.dh-mgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 24px;
}

.dh-mcard {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .dh-mcard:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.13);
        border-bottom-color: var(--p);
    }

    .dh-mcard .dh-mimg {
        overflow: hidden;
        background: var(--light);
    }

        .dh-mcard .dh-mimg img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform .5s ease;
        }

    .dh-mcard:hover .dh-mimg img {
        transform: scale(1.07);
    }

    .dh-mcard .dh-mbody {
        padding: 22px 24px 26px !important;
    }

    .dh-mcard h3 {
        color: var(--dark);
        font-size: 1.12rem;
        margin-bottom: 6px;
    }

    .dh-mcard p {
        font-size: .88rem;
        margin: 0;
    }

/* ---- Tables ---- */
.dh-specs {
    padding: 70px 0;
}

.dh-tablewrap {
    overflow-x: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
    margin-bottom: 18px;
}

.dh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 560px;
}

    .dh-table th {
        background: var(--dark);
        color: #fff;
        text-align: left;
        padding: 14px 18px;
        font-weight: 600;
        white-space: nowrap;
    }

    .dh-table td {
        padding: 13px 18px;
        border-bottom: 1px solid #eef2f7;
    }

    .dh-table tbody tr:nth-child(even) td {
        background: var(--light);
    }

    .dh-table td:first-child {
        font-weight: 600;
        color: var(--dark);
        white-space: nowrap;
    }

    .dh-table .dh-hl {
        color: var(--p);
        font-weight: 700;
    }

.dh-note {
    font-size: .85rem;
    color: #8a8a8a;
    background: var(--pl);
    border-left: 3px solid var(--p);
    padding: 10px 16px !important;
    border-radius: 0 8px 8px 0;
    display: inline-block;
}

/* ---- Advantages ---- */
.dh-adv {
    padding: 70px 0;
    background: var(--light);
}

.dh-advgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
}

.dh-advlist {
    padding: 35px 40px !important;
}

    .dh-advlist ul {
        list-style: none;
    }

    .dh-advlist li {
        position: relative;
        padding: 12px 0 12px 38px !important;
        color: var(--dark);
        font-weight: 500;
        border-bottom: 1px dashed #e2e8f0;
        font-size: .93rem;
    }

        .dh-advlist li:last-child {
            border-bottom: none;
        }

        .dh-advlist li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 14px;
            width: 24px;
            height: 24px;
            background: var(--pl);
            color: var(--p);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .7rem;
        }

/* ---- Quote ---- */
.dh-quote {
    padding: 0 0 70px;
}

.dh-quotebox {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--p), #c25e10);
    color: #fff;
    border-radius: 16px;
    padding: 45px 50px !important;
    position: relative;
    box-shadow: 0 16px 40px rgba(232,119,34,.35);
}

    .dh-quotebox i.dh-qmark {
        font-size: 2.2rem;
        opacity: .5;
        margin-bottom: 12px;
    }

    .dh-quotebox p {
        font-size: 1.08rem;
        font-weight: 500;
        font-style: italic;
        margin-bottom: 10px;
    }

    .dh-quotebox small {
        font-size: .85rem;
        color: #ffe4cc;
    }

/* ---- Installation ---- */
.dh-install {
    padding: 70px 0;
}

.dh-instgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dh-instcard {
    background: var(--light);
    border-radius: 14px;
    padding: 34px 36px !important;
    border-top: 4px solid var(--p);
}

    .dh-instcard h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark);
        font-size: 1.12rem;
        margin-bottom: 14px;
    }

        .dh-instcard h3 i {
            color: var(--p);
        }

    .dh-instcard p {
        font-size: .9rem;
        margin-bottom: 12px;
    }

        .dh-instcard p:last-child {
            margin-bottom: 0;
        }

    .dh-instcard strong {
        color: var(--dark);
    }

/* ---- Diagram ---- */
.dh-diagram {
    padding: 70px 0;
    background: var(--light);
}

.dh-diagram-box {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(22,50,79,.14);
    background: #fff;
}

    .dh-diagram-box img {
        width: 100%;
    }

    .dh-diagram-box figcaption {
        padding: 14px 20px !important;
        font-size: .82rem;
        color: #8a8a8a;
        text-align: center;
        background: var(--light);
        border-top: 1px solid #e6ecf3;
    }

/* ---- Gallery ---- */
.dh-gallery {
    padding: 70px 0;
}

.dh-ggrid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 16px;
}

.dh-gitem {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    background: #fff;
}

    .dh-gitem img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .dh-gitem::after {
        content: "\f00e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: rgba(15,36,56,.45);
        opacity: 0;
        transition: .3s;
    }

    .dh-gitem:hover::after {
        opacity: 1;
    }

    .dh-gitem:hover img {
        transform: scale(1.08);
    }

/* ---- Lightbox ---- */
.dh-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10,25,40,.94);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .dh-lb.open {
        display: flex;
    }

    .dh-lb img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

.dh-lb-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

    .dh-lb-close:hover {
        color: var(--p);
    }

/* ---- Bottom CTA ---- */
.dh-cta {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 60px 20px !important;
}

    .dh-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .dh-cta p {
        color: #b8c7d8;
        margin-bottom: 26px;
    }

/* ---- Responsive ---- */
@media (max-width:900px) {
    .dh-advgrid {
        grid-template-columns: 1fr;
    }

    .dh-instgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .dh-hero h1 {
        font-size: 1.8rem;
    }

    .dh-sechead h2 {
        font-size: 1.5rem;
    }

    .dh-tagline {
        font-size: 1rem;
    }

    .dh-intro-box {
        padding: 26px 22px !important;
    }

    .dh-advlist {
        padding: 28px 24px !important;
    }

    .dh-quotebox {
        padding: 32px 24px !important;
    }
}
/* ---- Highlight strip ---- */
.dh-highlight {
    background: linear-gradient(135deg, var(--p), #c25e10);
    color: #fff;
    text-align: center;
    padding: 45px 20px !important;
}

    .dh-highlight i {
        font-size: 2rem;
        margin-bottom: 10px;
        opacity: .85;
    }

    .dh-highlight h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .dh-highlight p {
        color: #ffe9d6;
        max-width: 640px;
        margin: 0 auto;
        font-size: .98rem;
    }
/* ---- Tagline strip ---- */
.dh-tagline {
    background: var(--p);
    color: #fff;
    text-align: center;
    padding: 22px 20px !important;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: .5px;
}

/* ---- Stat chips ---- */
.dh-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
    gap: 20px;
    margin: 60px 0;
}

.dh-stat {
    background: var(--light);
    border: 1px solid #e6ecf3;
    border-radius: 12px;
    text-align: center;
    padding: 26px 14px !important;
    transition: .3s;
}

    .dh-stat:hover {
        border-color: var(--p);
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(0,0,0,.09);
    }

    .dh-stat i {
        font-size: 1.6rem;
        color: var(--p);
        margin-bottom: 10px;
    }

    .dh-stat strong {
        display: block;
        color: var(--dark);
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .dh-stat span {
        font-size: .78rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #8a8a8a;
    }

/* ---- Section head ---- */
.dh-sechead {
    text-align: center;
    margin-bottom: 45px;
}

    .dh-sechead span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--p);
    }

    .dh-sechead h2 {
        font-size: 2rem;
        color: var(--dark);
        margin-top: 6px;
    }

    .dh-sechead .dh-sbar {
        width: 70px;
        height: 4px;
        background: var(--p);
        margin: 14px auto 0;
        border-radius: 2px;
    }

    .dh-sechead p {
        max-width: 720px;
        margin: 12px auto 0;
        font-size: .95rem;
    }

 

.dh-intro-box {
    max-width: 920px;
    margin: 0 auto;
    background: var(--light);
    border-left: 5px solid var(--p);
    border-radius: 0 14px 14px 0;
    padding: 32px 38px !important;
    font-size: .98rem;
}

    .dh-intro-box strong {
        color: var(--dark);
    }
/* ---- Intro + product showcase ---- */
.dh-showcase {
    padding: 60px 0 0;
}

.dh-scgrid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.dh-scimg {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(22,50,79,.18);
}

    .dh-scimg img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .dh-scimg .dh-cbadge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--p);
        color: #fff;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 50px;
    }

.dh-sctext h3 {
    color: var(--dark);
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.dh-sctext p {
    font-size: .95rem;
    margin-bottom: 14px;
    text-align: justify;
}

.dh-sctext strong {
    color: var(--dark);
}
/* ---- Colors ---- */
.dh-colors {
    padding: 10px 0 70px;
}

.dh-cgrid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.dh-color {
    text-align: center;
}

.dh-swatch {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 4px solid #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    transition: .3s;
}

.dh-color:hover .dh-swatch {
    transform: scale(1.1) translateY(-4px);
}

.dh-cb {
    background: #2563eb;
}

.dh-cg {
    background: #6b7280;
}

.dh-co {
    background: #ED3237;
}

.dh-cy {
    background: #eab308;
}

.dh-cr {
    background: #dc2626;
}

.dh-color strong {
    color: var(--dark);
    font-size: .9rem;
}

/* ---- Features & Advantages ---- */
.dh-lists {
    padding: 70px 0;
    background: var(--light);
}

.dh-lgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dh-lcard {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
}

    .dh-lcard .dh-lhead {
        background: var(--dark);
        color: #fff;
        padding: 18px 28px !important;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .dh-lcard .dh-lhead i {
            color: #f5c99b;
            font-size: 1.1rem;
        }

        .dh-lcard .dh-lhead h3 {
            font-size: 1.1rem;
            font-weight: 600;
        }

    .dh-lcard.dh-adv .dh-lhead {
        background: linear-gradient(135deg, var(--p), #c25e10);
    }

        .dh-lcard.dh-adv .dh-lhead i {
            color: #fff;
        }

    .dh-lcard ul {
        list-style: none;
        padding: 26px 28px !important;
    }

    .dh-lcard li {
        position: relative;
        padding: 9px 0 9px 36px !important;
        color: var(--dark);
        font-weight: 500;
        font-size: .92rem;
        border-bottom: 1px dashed #e2e8f0;
    }

        .dh-lcard li:last-child {
            border-bottom: none;
        }

        .dh-lcard li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 11px;
            width: 23px;
            height: 23px;
            background: var(--pl);
            color: var(--p);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .68rem;
        }
/* ---- Section head ---- */
.dh-sechead {
    text-align: center;
    margin-bottom: 45px;
}

    .dh-sechead span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--p);
    }

    .dh-sechead h2 {
        font-size: 2rem;
        color: var(--dark);
        margin-top: 6px;
    }

    .dh-sechead .dh-sbar {
        width: 70px;
        height: 4px;
        background: var(--p);
        margin: 14px auto 0;
        border-radius: 2px;
    }

    .dh-sechead p {
        max-width: 720px;
        margin: 12px auto 0;
        font-size: .95rem;
    }

/* ---- Features ---- */
.dh-features {
    padding: 70px 0;
    background: var(--light);
}

.dh-fgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 22px;
}

.dh-feat {
    background: #fff;
    border-radius: 12px;
    padding: 28px 26px !important;
    border-left: 4px solid var(--p);
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    transition: .3s;
}

    .dh-feat:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

    .dh-feat .dh-ficon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 16px;
        background: var(--pl);
        color: var(--p);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: .3s;
    }

    .dh-feat:hover .dh-ficon {
        background: var(--p);
        color: #fff;
    }

    .dh-feat h3 {
        color: var(--dark);
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .dh-feat p {
        font-size: .88rem;
        margin: 0;
    }

        .dh-feat p strong {
            color: var(--dark);
        }
/* ---- Easy to assemble ---- */
.dh-assemble {
    background: var(--dark);
    color: #d7e1ec;
    text-align: center;
    padding: 60px 20px !important;
}

    .dh-assemble i {
        font-size: 2.2rem;
        color: var(--p);
        margin-bottom: 14px;
    }

    .dh-assemble h2 {
        color: #fff;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .dh-assemble p {
        max-width: 680px;
        margin: 0 auto;
        font-size: .98rem;
    }

/* ---- Applications ---- */
.dh-apps {
    padding: 70px 0;
    background: var(--light);
}

.dh-agrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.dh-app {
    background: #fff;
    border-radius: 14px;
    padding: 40px 30px !important;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    border-bottom: 3px solid transparent;
    transition: .3s;
}

    .dh-app:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.13);
        border-bottom-color: var(--p);
    }

    .dh-app .dh-aicon {
        width: 76px;
        height: 76px;
        margin: 0 auto 18px;
        border-radius: 50%;
        background: var(--pl);
        color: var(--p);
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    .dh-app:hover .dh-aicon {
        background: var(--p);
        color: #fff;
    }

    .dh-app h3 {
        color: var(--dark);
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .dh-app p {
        font-size: .9rem;
        margin: 0;
    }

/* ---- Compliance badges ---- */
.dh-comply {
    padding: 0 0 70px;
}

.dh-cpgrid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dh-cpb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: #fff;
    border-radius: 50px;
    padding: 14px 30px !important;
    font-weight: 500;
    font-size: .92rem;
    box-shadow: 0 10px 25px rgba(22,50,79,.25);
}

    .dh-cpb i {
        color: var(--p);
        font-size: 1.1rem;
    }


/* ---- Quality banner (dark) ---- */
.dh-quality {
    background: var(--dark);
    color: #d7e1ec;
    padding: 60px 20px !important;
    text-align: center;
    margin-top: 60px;
}

    .dh-quality i {
        font-size: 2rem;
        color: var(--p);
        margin-bottom: 12px;
    }

    .dh-quality h2 {
        color: #fff;
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .dh-quality p {
        max-width: 780px;
        margin: 0 auto;
        font-size: .95rem;
    }

    .dh-quality strong {
        color: #fff;
    }

/* ---- Feature split rows ---- */
.dh-split {
    padding: 70px 0;
}

    .dh-split:nth-of-type(even) {
        background: var(--light);
    }

.dh-srow {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22,50,79,.1);
    max-width: 1000px;
    margin: 0 auto;
}

    .dh-srow .dh-simg {
        position: relative;
        min-height: 300px;
    }

        .dh-srow .dh-simg img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dh-srow .dh-simg span {
            position: absolute;
            bottom: 14px;
            left: 14px;
            background: var(--p);
            color: #fff;
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
        }

    .dh-srow .dh-sbody {
        padding: 38px 42px !important;
    }

    .dh-srow h3 {
        color: var(--dark);
        font-size: 1.35rem;
        margin-bottom: 14px;
    }

    .dh-srow p {
        font-size: .92rem;
        margin-bottom: 12px;
    }

        .dh-srow p:last-child {
            margin-bottom: 0;
        }

    .dh-srow strong {
        color: var(--dark);
    }

    .dh-srow.dh-rev .dh-simg {
        order: 2;
    }

/* ---- Advantage checklist ---- */
.dh-adv {
    padding: 70px 0;
    background: var(--light);
}

.dh-advbox {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
    padding: 40px 46px !important;
}

    .dh-advbox h3 {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dark);
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

        .dh-advbox h3 i {
            color: var(--p);
        }

    .dh-advbox ul {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 30px;
    }

    .dh-advbox li {
        position: relative;
        padding: 10px 0 10px 38px;
        color: var(--dark);
        font-weight: 500;
        font-size: .95rem;
        border-bottom: 1px dashed #e2e8f0;
    }

        .dh-advbox li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 12px;
            width: 24px;
            height: 24px;
            background: var(--pl);
            color: var(--p);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .7rem;
        }

/* ---- Systems cards ---- */
.dh-systems {
    padding: 70px 0;
}

.dh-sysgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
}

.dh-sys {
    background: var(--light);
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: .3s;
}

    .dh-sys:hover {
        border-color: var(--p);
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

    .dh-sys .dh-syicon {
        width: 74px;
        height: 74px;
        margin: 32px auto 18px;
        border-radius: 50%;
        background: var(--pl);
        color: var(--p);
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    .dh-sys:hover .dh-syicon {
        background: var(--p);
        color: #fff;
    }

    .dh-sys h3 {
        color: var(--dark);
        font-size: 1.15rem;
        padding: 0 24px;
    }

    .dh-sys p {
        font-size: .88rem;
        padding: 8px 24px 30px !important;
        margin: 0;
    }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ SECTION TITLES ============ */
.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

    .section-head .tag {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .section-head h2 {
        font-size: 2.1rem;
        color: var(--dark);
        font-weight: 600;
    }

    .section-head .bar {
        width: 70px;
        height: 4px;
        background: var(--primary);
        margin: 15px auto 0;
        border-radius: 2px;
    }

/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(rgba(15,36,56,.88), rgba(15,36,56,.88)), url('images/banner.jpg') center/cover no-repeat;
    padding: 95px 20px 105px !important;
    text-align: center;
    color: #fff;
}

    .page-banner h1 {
        font-size: 2.7rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .page-banner p {
        margin-top: 8px;
        font-weight: 300;
        color: #f5c99b;
        font-size: 1.05rem;
    }

    .page-banner .bar {
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 20px auto 0;
        border-radius: 2px;
    }

/* ============ WHO WE ARE ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 55px;
    align-items: center;
}

.about-img {
    position: relative;
}

    .about-img img {
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(22,50,79,.18);
    }

.exp-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: var(--primary);
    color: #fff;
    padding: 18px 22px !important;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(232,119,34,.45);
}

    .exp-badge strong {
        display: block;
        font-size: 1.9rem;
        line-height: 1.1;
    }

    .exp-badge span {
        font-size: .75rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

.about-text p {
    margin-bottom: 18px;
    text-align: justify;
}

    .about-text p strong {
        color: var(--dark);
    }

/* ============ HIGHLIGHT CARDS ============ */
.highlights {
    background: var(--light);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 25px;
}

.card {
    background: #fff;
    padding: 40px 25px !important;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
        border-bottom-color: var(--primary);
    }

    .card .icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 22px;
        border-radius: 50%;
        background: rgba(232,119,34,.12);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        transition: .3s;
    }

    .card:hover .icon {
        background: var(--primary);
        color: #000;
    }

    .card h3 {
        color: var(--dark);
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .card p {
        font-size: .9rem;
    }

/* ============ ORIGINALITY COUNTS ============ */
.originality {
    background: var(--dark);
    color: #d7e1ec;
}

    .originality .section-head h2 {
        color: #fff;
    }

    .originality p {
        margin-bottom: 18px;
    }

    .originality strong {
        color: #fff;
    }

.milestone {
    background: rgba(255,255,255,.06);
    border-left: 4px solid var(--primary);
    padding: 28px 30px !important;
    border-radius: 0 12px 12px 0;
    margin: 30px 0 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

    .milestone i {
        font-size: 1.8rem;
        color: var(--primary);
        margin-top: 6px;
    }

    .milestone h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .milestone p {
        margin: 0;
        font-size: .95rem;
    }

/* ============ ENDEAVORS ============ */
.endeavour-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    list-style: none;
    background: var(--light);
    padding: 35px 30px !important;
    border-radius: 12px;
}

    .check-list li {
        position: relative;
        padding-left: 34px;
        margin-bottom: 15px;
        color: var(--dark);
        font-weight: 500;
    }

        .check-list li:last-child {
            margin-bottom: 0;
        }

        .check-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 2px;
        }

/* ============ SCROLL REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============ RESPONSIVE ============ */
@media (max-width:900px) {
    .about-grid, .endeavour-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        max-width: 480px;
        margin: 0 auto 45px;
    }

    .exp-badge {
        left: 15px;
    }
}

@media (max-width:600px) {
    .page-banner h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }
}
/* ============ PAGE BANNER ============ */
.page-banner {
    background: linear-gradient(rgba(15,36,56,.88), rgba(15,36,56,.88)), url('images/banner.jpg') center/cover no-repeat;
    padding: 95px 20px 105px !important;
    text-align: center;
    color: #fff;
}

    .page-banner h1 {
        font-size: 2.7rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .page-banner p {
        margin-top: 8px;
        font-weight: 300;
        color: #f5c99b;
        font-size: 1.05rem;
    }

    .page-banner .bar {
        width: 80px;
        height: 4px;
        background: var(--primary);
        margin: 20px auto 0;
        border-radius: 2px;
    }

/* ============ SECTION HEAD ============ */
.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

    .section-head .tag {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .section-head h2 {
        font-size: 2.1rem;
        color: var(--dark);
        font-weight: 600;
    }

    .section-head .bar {
        width: 70px;
        height: 4px;
        background: var(--primary);
        margin: 15px auto 0;
        border-radius: 2px;
    }

/* ============ WHAT WE DO ============ */
.what-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 55px;
    align-items: center;
}

.what-text p {
    margin-bottom: 18px;
    text-align: justify;
}

    .what-text p strong {
        color: var(--dark);
    }

.what-img img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(22,50,79,.18);
}

.stat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--light);
    border: 1px solid #e6ecf3;
    border-radius: 50px;
    padding: 9px 18px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--dark);
    transition: .3s;
}

    .chip i {
        color: var(--primary);
    }

    .chip:hover {
        background: var(--primary);
        color: #00A859;
        border-color: var(--primary);
    }

        .chip:hover i {
            color: #00A859;
        }

/* ============ MISSION / VISION ============ */
.mvv-section {
    background: var(--light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mvv-card {
    background: #fff;
    padding: 42px 38px !important;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mvv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 22px;
    background: rgba(232,119,34,.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: .3s;
}

.mvv-card:hover .mvv-icon {
    background: var(--primary);
    color: #00A859;
}

.mvv-card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: .95rem;
}

/* ============ VALUES ============ */
.values-title {
    text-align: center;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 55px 0 30px;
}

    .values-title span {
        color: var(--primary);
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 25px;
}

.value-item {
    background: #fff;
    padding: 35px 22px !important;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .value-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
        border-bottom-color: var(--primary);
    }

    .value-item i {
        width: 64px;
        height: 64px;
        margin: 0 auto 18px;
        border-radius: 50%;
        background: rgba(232,119,34,.12);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        transition: .3s;
    }

    .value-item:hover i {
        background: var(--primary);
        color: #00A859;
    }

    .value-item h4 {
        color: var(--dark);
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .value-item p {
        font-size: .88rem;
        margin: 0;
    }

/* ============ RESPONSIVE ============ */
@media (max-width:900px) {
    .what-grid {
        grid-template-columns: 1fr;
    }

    .what-img {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .page-banner h1 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }
}
/* ===== OUR STORY TIMELINE (self-contained) ===== */
.dh-story {
    --dh-primary: #ED3237;
    --dh-dark: #16324f;
    font-family: 'Poppins','Segoe UI',sans-serif;
    color: #4a4a4a;
    line-height: 1.7;
    padding: 70px 20px !important;
    background: #fff;
}

    .dh-story * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .dh-story img {
        max-width: 100%;
        display: block;
    }

.dh-head {
    text-align: center;
    margin-bottom: 60px;
}

    .dh-head span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--dh-primary);
    }

    .dh-head h2 {
        font-size: 2rem;
        color: var(--dh-dark);
        margin-top: 6px;
    }

    .dh-head .dh-bar {
        width: 70px;
        height: 4px;
        background: var(--dh-primary);
        margin: 14px auto 0;
        border-radius: 2px;
    }

.dh-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

    .dh-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        transform: translateX(-50%);
        border-radius: 2px;
        background: linear-gradient(180deg, var(--dh-primary), var(--dh-dark));
    }

.dh-item {
    position: relative;
    width: 50%;
    padding: 18px 45px 18px 0;
}

    .dh-item:nth-child(even) {
        left: 50%;
        padding: 18px 0 18px 45px !important;
    }

.dh-dot {
    position: absolute;
    top: 40px;
    right: -9px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid var(--dh-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(232,119,34,.15);
    z-index: 2;
}

.dh-item:nth-child(even) .dh-dot {
    right: auto;
    left: -9px;
}

.dh-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    border-bottom: 3px solid var(--dh-primary);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .dh-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 35px rgba(0,0,0,.15);
    }

    .dh-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.dh-body {
    padding: 20px 22px 24px !important;
}

.dh-year {
    display: inline-block;
    background: var(--dh-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.dh-body h3 {
    color: var(--dh-dark);
    font-size: 1.05rem;
    line-height: 1.45;
}

.dh-body p {
    font-size: .88rem;
    margin-top: 6px;
}

.dh-patent {
    display: inline-block;
    margin-top: 10px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--dh-primary);
    background: rgba(232,119,34,.1);
    padding: 4px 12px;
    border-radius: 6px;
}

.dh-end {
    text-align: center;
    margin-top: 50px;
}

    .dh-end span {
        display: inline-block;
        background: var(--dh-dark);
        color: #fff;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 500;
    }

@media (max-width:768px) {
    .dh-timeline::before {
        left: 10px;
        transform: none;
    }

    .dh-item,
    .dh-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 12px 0 12px 40px !important;
    }

        .dh-dot,
        .dh-item:nth-child(even) .dh-dot {
            left: 2px;
            right: auto;
        }

    .dh-head h2 {
        font-size: 1.5rem;
    }
}
.dh-leadership {
    --dl-primary: #ED3237;
    --dl-dark: #16324f;
    --dl-light: #f7f9fc;
    --dl-text: #4a4a4a;
    font-family: 'Poppins','Segoe UI',sans-serif;
    color: var(--dl-text);
    line-height: 1.85;
    background: #fff;
    padding: 70px 20px !important;
}

    .dh-leadership * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .dh-leadership img {
        max-width: 100%;
        display: block;
    }

/* ---- Section head ---- */
.dl-head {
    text-align: center;
    margin-bottom: 55px;
}

    .dl-head span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--dl-primary);
    }

    .dl-head h2 {
        font-size: 2rem;
        color: var(--dl-dark);
        margin-top: 6px;
    }

    .dl-head .dl-bar {
        width: 70px;
        height: 4px;
        background: var(--dl-primary);
        margin: 14px auto 0;
        border-radius: 2px;
    }

/* ---- Founder section ---- */
.dl-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
}

.dl-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(22,50,79,.18);
}

    .dl-photo img {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

.dl-photo-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(transparent, rgba(22,50,79,.94));
    padding: 45px 20px 16px !important;
}

    .dl-photo-name h3 {
        font-size: 1.25rem;
    }

    .dl-photo-name small {
        display: block;
        font-size: .72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #f5c99b;
        margin-top: 3px;
    }

.dl-badge {
    position: absolute;
    top: 16px;
    right: -8px;
    background: var(--dl-primary);
    color: #fff;
    text-align: center;
    padding: 12px 18px !important;
    border-radius: 10px;
    font-size: .72rem;
    line-height: 1.3;
    box-shadow: 0 8px 20px rgba(232,119,34,.4);
}

    .dl-badge strong {
        display: block;
        font-size: 1.3rem;
    }

.dl-letter {
    background: var(--dl-light);
    border-left: 4px solid var(--dl-primary);
    border-radius: 0 14px 14px 0;
    padding: 42px 48px !important;
}

    .dl-letter h3 {
        color: var(--dl-dark);
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .dl-letter p {
        margin-bottom: 18px;
        text-align: justify;
    }

.dl-quote {
    background: #fff;
    border: 1px dashed var(--dl-primary);
    border-radius: 10px;
    padding: 18px 26px !important;
    margin: 22px 0;
    font-style: italic;
    font-weight: 500;
    color: var(--dl-dark);
}

.dl-sign {
    margin-top: 32px;
}

    .dl-sign .dl-script {
        font-family: 'Great Vibes',cursive;
        font-size: 2.6rem;
        color: var(--dl-dark);
        line-height: 1.1;
    }

    .dl-sign strong {
        display: block;
        color: var(--dl-dark);
        font-size: 1.05rem;
        margin-top: 8px;
    }

    .dl-sign small {
        font-size: .8rem;
        color: #8a8a8a;
        letter-spacing: 1px;
    }

/* ---- Next generation team ---- */
.dl-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 75px;
}

.dl-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.07);
    border-bottom: 3px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .dl-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.13);
        border-bottom-color: var(--dl-primary);
    }

    .dl-card .dl-img {
        overflow: hidden;
    }

    .dl-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .dl-card:hover img {
        transform: scale(1.06);
    }

.dl-card-body {
    padding: 26px 24px 32px !important;
}

    .dl-card-body h3 {
        color: var(--dl-dark);
        font-size: 1.25rem;
    }

    .dl-card-body em {
        display: inline-block;
        font-style: normal;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--dl-primary);
        background: rgba(232,119,34,.1);
        padding: 4px 16px;
        border-radius: 50px;
        margin: 10px 0 12px;
    }

    .dl-card-body p {
        font-size: .9rem;
    }

/* ---- Responsive ---- */
@media (max-width:900px) {
    .dl-grid {
        grid-template-columns: 1fr;
    }

    .dl-photo {
        max-width: 380px;
        margin: 0 auto;
    }

    .dl-letter {
        padding: 30px 25px !important;
    }

    .dl-team {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .dh-leadership {
        padding: 50px 16px !important;
    }

    .dl-head h2 {
        font-size: 1.5rem;
    }

    .dl-photo img {
        height: 380px;
    }
}
/* ===== LOCATIONS PAGE (self-contained) ===== */
.dh-locations {
    --p: #ED3237;
    --pl: rgba(232,119,34,.1);
    --dark: #16324f;
    --light: #f7f9fc;
    --txt: #4a4a4a;
    font-family: 'Poppins','Segoe UI',sans-serif;
    color: var(--txt);
    line-height: 1.75;
    background: #fff;
    padding: 70px 20px !important;
}

    .dh-locations * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

/* ---- Head ---- */
.dh-loc-head {
    text-align: center;
    margin-bottom: 50px;
}

    .dh-loc-head span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--p);
    }

    .dh-loc-head h2 {
        font-size: 2rem;
        color: var(--dark);
        margin-top: 6px;
    }

    .dh-loc-head .dh-bar {
        width: 70px;
        height: 4px;
        background: var(--p);
        margin: 14px auto 0;
        border-radius: 2px;
    }

/* ---- Top : HQ + International + Follow ---- */
.dh-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto 55px;
}

.dh-side {
    display: grid;
    gap: 28px;
    align-content: start;
}

.dh-hq {
    background: var(--light);
    border-left: 5px solid var(--p);
    border-radius: 14px;
    padding: 38px 42px !important;
}

.dh-hq-badge {
    display: inline-block;
    background: var(--p);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px !important;
    border-radius: 50px;
    margin-bottom: 12px;
}

.dh-hq h3 {
    color: var(--dark);
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.dh-addr {
    display: flex;
    gap: 12px;
    font-size: .95rem;
    margin-bottom: 22px;
}

    .dh-addr i {
        color: var(--p);
        margin-top: 6px;
    }

.dh-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .dh-contact-list a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--dark);
        font-size: .92rem;
        font-weight: 500;
        background: #fff;
        border: 1px solid #e6ecf3;
        border-radius: 10px;
        padding: 10px 16px;
        transition: .25s;
    }

        .dh-contact-list a i {
            color: var(--p);
            width: 18px;
            text-align: center;
        }

        .dh-contact-list a:hover {
            background: var(--p);
            color: #fff;
            border-color: var(--p);
        }

            .dh-contact-list a:hover i {
                color: #fff;
            }

/* International (dark card) */
.dh-intl {
    background: var(--dark);
    color: #d7e1ec;
    border-radius: 14px;
    padding: 32px 30px !important;
}

.dh-intl-badge {
    display: inline-block;
    background: var(--p);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.dh-intl h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.dh-intl a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: .92rem;
    font-weight: 500;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 10px;
    transition: .25s;
}

    .dh-intl a:last-child {
        margin-bottom: 0;
    }

    .dh-intl a i {
        color: var(--p);
        width: 18px;
        text-align: center;
    }

    .dh-intl a:hover {
        background: var(--p);
        border-color: var(--p);
    }

/* Follow + Barcode */
.dh-follow {
    background: #fff;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    padding: 28px 30px !important;
    text-align: center;
}

    .dh-follow h4 {
        color: var(--dark);
        font-size: 1.05rem;
        margin-bottom: 16px;
    }

.dh-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .dh-socials a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--pl);
        color: var(--p);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        text-decoration: none;
        transition: .25s;
    }

        .dh-socials a:hover {
            background: var(--p);
            color: #fff;
            transform: translateY(-4px);
        }

.dh-qr img {
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #e6ecf3;
}

.dh-qr small {
    display: block;
    margin-top: 8px;
    font-size: .75rem;
    color: #8a8a8a;
    letter-spacing: 1px;
}

/* ---- Branch grid ---- */
.dh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.dh-branch {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 14px;
    padding: 28px 26px !important;
    border-top: 4px solid transparent;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .dh-branch:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
        border-top-color: var(--p);
    }

.dh-branch-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

    .dh-branch-head h4 {
        color: var(--dark);
        font-size: 1.08rem;
    }

.dh-region {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--p);
    background: var(--pl);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.dh-branch .dh-addr {
    font-size: .86rem;
    margin-bottom: 16px;
}

    .dh-branch .dh-addr i {
        margin-top: 5px;
    }

.dh-tels {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

    .dh-tels a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--dark);
        font-size: .87rem;
        font-weight: 500;
        transition: .2s;
    }

        .dh-tels a i {
            color: var(--p);
            font-size: .8rem;
            width: 16px;
        }

        .dh-tels a:hover {
            color: var(--p);
        }

.dh-mails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .dh-mails a {
        font-size: .78rem;
        font-weight: 500;
        text-decoration: none;
        color: var(--dark);
        background: var(--light);
        border: 1px solid #e6ecf3;
        padding: 5px 13px;
        border-radius: 50px;
        transition: .25s;
    }

        .dh-mails a:hover {
            background: var(--p);
            color: #fff;
            border-color: var(--p);
        }

/* ---- Responsive ---- */
@media (max-width:900px) {
    .dh-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width:600px) {
    .dh-locations {
        padding: 50px 16px !important;
    }

    .dh-loc-head h2 {
        font-size: 1.5rem;
    }

    .dh-hq {
        padding: 28px 22px !important;
    }

    .dh-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== PRODUCT PAGE : CLOSED TUNNEL EC HOUSES (self-contained) ===== */
.dh-prod {
    --p: #ED3237;
    --pl: rgba(232,119,34,.1);
    --dark: #16324f;
    --darker: #0f2438;
    --light: #f7f9fc;
    --txt: #4a4a4a;
    font-family: 'Poppins','Segoe UI',sans-serif;
    color: var(--txt);
    line-height: 1.8;
    background: #fff; border-bottom:none !important;
}

    .dh-prod * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .dh-prod img {
        max-width: 100%;
        display: block;
    }

.dh-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 20px;
}

/* ---- Hero ---- */
.dh-hero {
    background: linear-gradient(rgba(15,36,56,.9), rgba(15,36,56,.9)), url('images/product-banner.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 85px 20px 90px;
}

    .dh-hero .dh-crumb {
        font-size: .75rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #f5c99b;
        font-weight: 600;
    }

    .dh-hero h1 {
        font-size: 2.6rem;
        font-weight: 600;
        margin-top: 8px;
    }

    .dh-hero .dh-bar {
        width: 80px;
        height: 4px;
        background: var(--p);
        margin: 18px auto 22px;
        border-radius: 2px;
    }

.dh-hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.dh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 50px;
    transition: .3s;
}

.dh-btn-solid {
    background: var(--p);
    color: #fff;
    box-shadow: 0 8px 22px rgba(232,119,34,.4);
}

    .dh-btn-solid:hover {
        background: #c25e10;
        transform: translateY(-3px);
    }

.dh-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}

    .dh-btn-ghost:hover {
        background: #fff;
        color: var(--dark);
        border-color: #fff;
    }

/* ---- Tagline strip ---- */
.dh-tagline {
    background: var(--p);
    color: #fff;
    text-align: center;
    padding: 22px 20px !important;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: .5px;
}

/* ---- Stat chips ---- */
.dh-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
    gap: 20px;
    margin: 60px 0;
}

.dh-stat {
    background: var(--light);
    border: 1px solid #e6ecf3;
    border-radius: 12px;
    text-align: center;
    padding: 26px 14px;
    transition: .3s;
}

    .dh-stat:hover {
        border-color: var(--p);
        transform: translateY(-5px);
        box-shadow: 0 12px 26px rgba(0,0,0,.09);
    }

    .dh-stat i {
        font-size: 1.6rem;
        color: var(--p);
        margin-bottom: 10px;
    }

    .dh-stat strong {
        display: block;
        color: var(--dark);
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .dh-stat span {
        font-size: .78rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #8a8a8a;
    }

/* ---- Section head ---- */
.dh-sechead {
    text-align: center;
    margin-bottom: 45px;
}

    .dh-sechead span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--p);
    }

    .dh-sechead h2 {
        font-size: 2rem;
        color: var(--dark);
        margin-top: 6px;
    }

    .dh-sechead .dh-sbar {
        width: 70px;
        height: 4px;
        background: var(--p);
        margin: 14px auto 0;
        border-radius: 2px;
    }

/* ---- Features ---- */
.dh-features {
    padding: 70px 0;
    background: var(--light);
}

.dh-fgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 22px;
}

.dh-feat {
    background: #fff;
    border-radius: 12px;
    padding: 28px 26px;
    border-left: 4px solid var(--p);
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    transition: .3s;
}

    .dh-feat:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

    .dh-feat .dh-ficon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 16px;
        background: var(--pl);
        color: var(--p);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: .3s;
    }

    .dh-feat:hover .dh-ficon {
        background: var(--p);
        color: #fff;
    }

    .dh-feat h3 {
        color: var(--dark);
        font-size: 1.02rem;
        margin-bottom: 8px;
    }

    .dh-feat p {
        font-size: .88rem;
        margin: 0;
    }

/* ---- Diagram ---- */
.dh-diagram {
    padding: 70px 0;
}

.dh-diagram-box {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(22,50,79,.14);
    background: #fff;
}

    .dh-diagram-box img {
        width: 100%;
    }

    .dh-diagram-box figcaption {
        padding: 14px 20px;
        font-size: .82rem;
        color: #8a8a8a;
        text-align: center;
        background: var(--light);
        border-top: 1px solid #e6ecf3;
    }

/* ---- Gallery ---- */
.dh-gallery {
    padding: 70px 0;
    background: var(--light);
}

.dh-ggrid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 16px;
}

.dh-gitem {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    background: #fff;
}

    .dh-gitem img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .dh-gitem::after {
        content: "\f00e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: rgba(15,36,56,.45);
        opacity: 0;
        transition: .3s;
    }

    .dh-gitem:hover::after {
        opacity: 1;
    }

    .dh-gitem:hover img {
        transform: scale(1.08);
    }

/* ---- Lightbox ---- */
.dh-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10,25,40,.94);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .dh-lb.open {
        display: flex;
    }

    .dh-lb img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

.dh-lb-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

    .dh-lb-close:hover {
        color: var(--p);
    }

/* ---- Bottom CTA ---- */
.dh-cta {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
/* ---- Deals strip ---- */
.dh-deals {
    background: linear-gradient(135deg, var(--p), #c25e10);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

    .dh-deals i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .dh-deals h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .dh-deals p {
        max-width: 640px;
        margin: 0 auto;
        font-size: 1.02rem;
        color: #ffe9d6;
    }
/* ---- Sizes (unique to Tiny Homes) ---- */
.dh-sizes {
    padding: 70px 0;
}

.dh-sizegrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.dh-size {
    background: #fff;
    border: 2px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: .3s;
}

    .dh-size:hover {
        border-color: var(--p);
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

.dh-size-top {
    background: var(--dark);
    color: #fff;
    padding: 18px 15px;
}

    .dh-size-top i {
        font-size: 1.5rem;
        color: #f5c99b;
        margin-bottom: 6px;
    }

    .dh-size-top h3 {
        font-size: 1.05rem;
        font-weight: 600;
    }

.dh-size-body {
    padding: 24px 20px 28px;
}

    .dh-size-body .dh-dim {
        color: var(--dark);
        font-weight: 600;
        font-size: 1.05rem;
    }

    .dh-size-body .dh-ft {
        font-size: .85rem;
        color: #8a8a8a;
        margin: 4px 0 14px;
    }

.dh-cap {
    display: inline-block;
    background: var(--pl);
    color: var(--p);
    font-weight: 600;
    font-size: .9rem;
    padding: 7px 20px;
    border-radius: 50px;
}
/* ---- Section head ---- */
.dh-sechead {
    text-align: center;
    margin-bottom: 45px;
}

    .dh-sechead span {
        display: inline-block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--p);
    }

    .dh-sechead h2 {
        font-size: 2rem;
        color: var(--dark);
        margin-top: 6px;
    }

    .dh-sechead .dh-sbar {
        width: 70px;
        height: 4px;
        background: var(--p);
        margin: 14px auto 0;
        border-radius: 2px;
    }

    .dh-sechead p {
        max-width: 700px;
        margin: 12px auto 0;
        font-size: .95rem;
    }

/* ---- Features ---- */
.dh-features {
    padding: 70px 0;
    background: var(--light);
}

.dh-fgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 22px;
}

.dh-feat {
    background: #fff;
    border-radius: 12px;
    padding: 28px 26px;
    border-left: 4px solid var(--p);
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    transition: .3s;
}

    .dh-feat:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

    .dh-feat .dh-ficon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 16px;
        background: var(--pl);
        color: var(--p);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        transition: .3s;
    }

    .dh-feat:hover .dh-ficon {
        background: var(--p);
        color: #fff;
    }

    .dh-feat h3 {
        color: var(--dark);
        font-size: 1.02rem;
        margin-bottom: 8px;
    }

    .dh-feat p {
        font-size: .88rem;
        margin: 0;
    }

/* ---- Tables ---- */
.dh-specs {
    padding: 70px 0;
}

.dh-tablewrap {
    overflow-x: auto;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
    margin-bottom: 18px;
}

.dh-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 640px;
}

    .dh-table th {
        background: var(--dark);
        color: #fff;
        text-align: left;
        padding: 14px 18px;
        font-weight: 600;
        white-space: nowrap;
    }

    .dh-table td {
        padding: 13px 18px;
        border-bottom: 1px solid #eef2f7;
    }

    .dh-table tbody tr:nth-child(even) td {
        background: var(--light);
    }

    .dh-table td:first-child {
        font-weight: 600;
        color: var(--dark);
        white-space: nowrap;
    }

    .dh-table .dh-hl {
        color: var(--p);
        font-weight: 700;
    }

.dh-note {
    font-size: .85rem;
    color: #8a8a8a;
    background: var(--pl);
    border-left: 3px solid var(--p);
    padding: 10px 16px;
    border-radius: 0 8px 8px 0;
    display: inline-block;
}

/* ---- Diagram ---- */
.dh-diagram {
    padding: 70px 0;
    background: var(--light);
}

.dh-diagram-box {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(22,50,79,.14);
    background: #fff;
}

    .dh-diagram-box img {
        width: 100%;
    }

    .dh-diagram-box figcaption {
        padding: 14px 20px;
        font-size: .82rem;
        color: #8a8a8a;
        text-align: center;
        background: var(--light);
        border-top: 1px solid #e6ecf3;
    }

/* ---- Turnkey (dark) ---- */
.dh-turnkey {
    background: var(--dark);
    color: #d7e1ec;
    padding: 70px 0;
}

    .dh-turnkey .dh-sechead h2 {
        color: #fff;
    }

.dh-turnkey-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dh-turnkey p {
    margin-bottom: 16px;
    font-size: .95rem;
}

.dh-turnkey strong {
    color: #fff;
}

/* ---- Value Addition cards ---- */
.dh-value {
    padding: 70px 0;
}

.dh-vgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
    gap: 20px;
}

.dh-vitem {
    background: var(--light);
    border: 1px solid #e6ecf3;
    border-radius: 12px;
    padding: 30px 18px;
    text-align: center;
    transition: .3s;
}

    .dh-vitem:hover {
        transform: translateY(-6px);
        border-color: var(--p);
        box-shadow: 0 14px 28px rgba(0,0,0,.1);
    }

    .dh-vitem i {
        width: 60px;
        height: 60px;
        margin: 0 auto 16px;
        border-radius: 50%;
        background: var(--pl);
        color: var(--p);
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    .dh-vitem:hover i {
        background: var(--p);
        color: #fff;
    }

    .dh-vitem h4 {
        color: var(--dark);
        font-size: .95rem;
    }

/* ---- Best in class details ---- */
.dh-best {
    padding: 70px 0;
    background: var(--light);
}

.dh-bgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px;
}

.dh-bitem {
    background: #fff;
    border-radius: 12px;
    padding: 30px 28px;
    border-top: 4px solid var(--p);
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: .3s;
}

    .dh-bitem:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0,0,0,.12);
    }

    .dh-bitem .dh-bhead {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 12px;
    }

        .dh-bitem .dh-bhead i {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 10px;
            background: var(--pl);
            color: var(--p);
            font-size: 1.15rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .dh-bitem h3 {
        color: var(--dark);
        font-size: 1.08rem;
    }

    .dh-bitem p {
        font-size: .88rem;
        margin: 0;
    }

/* ---- Box specs (female / male) ---- */
.dh-boxes {
    padding: 70px 0;
}

.dh-boxgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dh-boxcard {
    border: 1px solid #e6ecf3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(22,50,79,.1);
    background: #fff;
}

    .dh-boxcard .dh-boximg {
        position: relative;
    }

        .dh-boxcard .dh-boximg img {
            width: 100%;
            height: 230px;
            object-fit:contain;
        }

        .dh-boxcard .dh-boximg span {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: var(--p);
            color: #fff;
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 50px;
        }

    .dh-boxcard .dh-tablewrap {
        box-shadow: none;
        border-radius: 0;
        margin: 0;
    }

    .dh-boxcard .dh-table {
        min-width: 0;
        font-size: .85rem;
    }

/* ---- Gallery ---- */
.dh-gallery {
    padding: 70px 0;
    background: var(--light);
}

.dh-ggrid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 16px;
}

.dh-gitem {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    background: #fff;
}

    .dh-gitem img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .dh-gitem::after {
        content: "\f00e";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        color: #fff;
        background: rgba(15,36,56,.45);
        opacity: 0;
        transition: .3s;
    }

    .dh-gitem:hover::after {
        opacity: 1;
    }

    .dh-gitem:hover img {
        transform: scale(1.08);
    }

/* ---- Lightbox ---- */
.dh-lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10,25,40,.94);
    align-items: center;
    justify-content: center;
    padding: 30px;
}

    .dh-lb.open {
        display: flex;
    }

    .dh-lb img {
        max-width: 90vw;
        max-height: 85vh;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

.dh-lb-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

    .dh-lb-close:hover {
        color: var(--p);
    }

    .dh-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .dh-cta p {
        color: #b8c7d8;
        margin-bottom: 26px;
    }

/* ---- Responsive ---- */
@media (max-width:600px) {
    .dh-hero h1 {
        font-size: 1.8rem;
    }

    .dh-sechead h2 {
        font-size: 1.5rem;
    }

    .dh-tagline {
        font-size: 1rem;
    }
}/* ============ BRAND TOKENS (from logo) ============ */
:root {
    --green: #00A859;
    --green-d: #007A41;
    --deep: #05351F;
    --deep2: #074528;
    --red: #ED3237;
    --red-d: #C92025;
    --gray: #606062;
    --ink: #1E2420;
    --cream: #FAF8F2;
    --sand: #F0EBDF;
    --white: #fff;
    --r: 18px;
    --sh: 0 14px 40px rgba(8,45,25,.12);
    --sh-lg: 0 26px 60px rgba(8,45,25,.20);
    --tr: .5s cubic-bezier(.22,.8,.3,1);
    --serif: 'Playfair Display',Georgia,serif;
    --sans: 'Inter',Segoe UI,sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--gray);
    background: var(--cream);
    overflow-x: hidden;
    background-image: radial-gradient(rgba(0,0,0,.035) 1px,transparent 1px);
    background-size: 24px 24px
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

.container {
    width: min(1200px,92%);
    margin: auto
}

h1, h2, h3.serif {
    font-family: var(--serif)
}

/* ============ SCROLL PROGRESS ============ */
#scrollBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    z-index: 2000;
    background: linear-gradient(90deg,var(--green) 60%,var(--red) 60%);
    border-radius: 0 4px 4px 0
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all .9s cubic-bezier(.2,.85,.3,1)
}

    .reveal.l {
        transform: translateX(-70px)
    }

    .reveal.r {
        transform: translateX(70px)
    }

    .reveal.z {
        transform: scale(.85)
    }

    .reveal.on {
        opacity: 1;
        transform: none
    }

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* ============ TOP BAR ============ */
.topbar {
    background: var(--deep);
    color: #cfe8da;
    font-size: 12.5px
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 40px;
        gap: 14px
    }

.tb-links {
    display: flex;
    gap: 20px
}

    .tb-links a {
        transition: .3s;
        letter-spacing: .4px
    }

        .tb-links a:hover {
            color: #7BE3AE
        }

.tb-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.tb-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 5px 14px;
    transition: .3s
}

    .tb-search input {
        background: none;
        border: 0;
        outline: 0;
        color: #fff;
        width: 0;
        transition: .4s;
        font-size: 12.5px
    }

    .tb-search:focus-within input, .tb-search:hover input {
        width: 120px
    }

    .tb-search i {
        color: var(--green);
        cursor: pointer;
        font-size: 12px
    }

.tb-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer
}

    .tb-lang i {
        color: var(--red)
    }

/* ============ HEADER (floating card nav) ============ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: .4s;
    background: rgba(250,248,242,.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.05)
}

    header.stuck {
        padding: 6px 0;
        box-shadow: 0 10px 30px rgba(8,45,25,.10)
    }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.logo svg {
    height: 54px;
    width: auto;
    transition: .4s
}

.logo:hover svg {
    transform: scale(1.05)
}

nav > ul {
    display: flex;
    gap: 2px
}

    nav > ul > li {
        position: relative
    }

        nav > ul > li > a {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 11px 14px;
            font-weight: 600;
            font-size: 14px;
            color: var(--ink);
            border-radius: 12px;
            transition: .3s
        }

            nav > ul > li > a > i {
                font-size: 9px;
                color: var(--green);
                transition: transform .35s
            }

            nav > ul > li > a:hover {
                background: var(--green);
                color: #fff
            }

                nav > ul > li > a:hover > i {
                    color: #fff;
                    transform: rotate(180deg)
                }
/* dropdown */
.drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 255px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--sh-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.97);
    transition: .4s cubic-bezier(.3,1.3,.4,1);
    border: 1px solid #eee6
}

    .drop::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 26px;
        width: 16px;
        height: 16px;
        background: #fff;
        transform: rotate(45deg);
        border-radius: 3px
    }

nav li:hover .drop {
    opacity: 1;
    visibility: visible;
    transform: none
}

.drop a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray);
    transition: .3s
}

    .drop a i {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        background: #E9F8F0;
        color: var(--green);
        display: grid;
        place-items: center;
        font-size: 12px;
        transition: .45s
    }

    .drop a:hover {
        background: var(--deep);
        color: #fff;
        padding-left: 20px
    }

        .drop a:hover i {
            background: var(--green);
            color: #fff;
            transform: rotate(360deg)
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 40px;
    padding: 14px 30px;
    cursor: pointer;
    border: 0;
    transition: .35s
}

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(237,50,55,.35)
}

    .btn-red:hover {
        background: var(--red-d);
        transform: translateY(-4px) scale(1.02)
    }

.btn-green {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,168,89,.35)
}

    .btn-green:hover {
        background: var(--green-d);
        transform: translateY(-4px)
    }

.btn-line {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.55)
}

    .btn-line:hover {
        background: #fff;
        color: var(--deep);
        transform: translateY(-4px)
    }

.burger {
    display: none;
    background: var(--deep);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 0;
    font-size: 18px;
    cursor: pointer
}

/* ============ HERO SLIDER ============ */
.hero {
    position: relative;
    height: 86vh;
    min-height: 560px;
    overflow: hidden;
    border-radius: 0 0 34px 34px
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
    display: flex;
    align-items: center;
    z-index: 1
}

    .slide.on {
        opacity: 1;
        visibility: visible;
        z-index: 2
    }

    .slide .bg {
        position: absolute;
        inset: 0;
        transform: scale(1.18);
        transition: transform 7.5s ease
    }

    .slide.on .bg {
        transform: scale(1)
    }

.s1 .bg {
    background: linear-gradient(100deg,rgba(4,42,24,.94) 15%,rgba(0,88,48,.55) 60%,rgba(0,0,0,.2)),url('https://images.unsplash.com/photo-1516467508483-a7212febe31a?auto=format&fit=crop&w=1800&q=75') center/cover
}

.s2 .bg {
    background: linear-gradient(100deg,rgba(30,32,30,.94) 15%,rgba(96,96,98,.6) 60%,rgba(0,0,0,.2)),url('https://images.unsplash.com/photo-1548777123-e216912df7d8?auto=format&fit=crop&w=1800&q=75') center/cover
}

.s3 .bg {
    background: linear-gradient(100deg,rgba(90,15,18,.94) 15%,rgba(237,50,55,.5) 60%,rgba(0,0,0,.2)),url('https://images.unsplash.com/photo-1595449543706-24bc288a6f2a?auto=format&fit=crop&w=1800&q=75') center/cover
}

.hero-in {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 660px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(6px);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600
}

    .eyebrow i {
        color: #FFD166
    }

.hero h1 {
    font-size: clamp(2.3rem,5vw,4rem);
    line-height: 1.12;
    margin: 22px 0 18px;
    font-weight: 800
}

    .hero h1 em {
        font-style: italic;
        position: relative;
        color: #7BE3AE
    }

        .hero h1 em::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 2px;
            height: 8px;
            background: var(--red);
            opacity: .85;
            z-index: -1;
            border-radius: 4px
        }

.hero p {
    font-size: 16px;
    line-height: 1.8;
    opacity: .92;
    max-width: 540px
}

.hero-btns {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap
}

.hero-meta {
    display: flex;
    gap: 26px;
    margin-top: 36px;
    font-size: 13px;
    font-weight: 600;
    opacity: .9;
    flex-wrap: wrap
}

    .hero-meta span {
        display: flex;
        align-items: center;
        gap: 8px
    }

    .hero-meta i {
        color: #7BE3AE
    }
/* entrance stagger */
.hero .eyebrow, .hero h1, .hero p, .hero-btns, .hero-meta {
    opacity: 0;
    transform: translateY(34px);
    transition: .8s
}

.slide.on .eyebrow {
    opacity: 1;
    transform: none;
    transition-delay: .15s
}

.slide.on h1 {
    opacity: 1;
    transform: none;
    transition-delay: .3s
}

.slide.on p {
    opacity: .92;
    transform: none;
    transition-delay: .45s
}

.slide.on .hero-btns {
    opacity: 1;
    transform: none;
    transition-delay: .6s
}

.slide.on .hero-meta {
    opacity: .9;
    transform: none;
    transition-delay: .75s
}
/* counter + progress */
.hero-side {
    position: absolute;
    right: 5%;
    bottom: 9%;
    z-index: 4;
    color: #fff;
    text-align: right
}

    .hero-side .num {
        font-family: var(--serif);
        font-size: 52px;
        font-weight: 800;
        line-height: 1
    }

        .hero-side .num small {
            font-size: 18px;
            opacity: .6
        }

.h-track {
    width: 150px;
    height: 3px;
    background: rgba(255,255,255,.25);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden
}

    .h-track span {
        display: block;
        height: 100%;
        width: 0;
        background: var(--red)
    }

        .h-track span.run {
            animation: hprog 6s linear forwards
        }

@keyframes hprog {
    to {
        width: 100%
    }
}

.hero-arrows {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .hero-arrows button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,.45);
        background: rgba(255,255,255,.1);
        backdrop-filter: blur(4px);
        color: #fff;
        font-size: 15px;
        cursor: pointer;
        transition: .35s
    }

        .hero-arrows button:hover {
            background: var(--green);
            border-color: var(--green);
            transform: scale(1.12)
        }

/* ============ BRANCH CARDS (overlap hero) ============ */
.branches {
    margin-top: -80px;
    position: relative;
    z-index: 10
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.branch {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    transition: var(--tr);
    position: relative
}

    .branch:hover {
        transform: translateY(-12px) rotate(-.6deg)
    }

    .branch .ph {
        height: 170px;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg,var(--green),var(--deep))
    }

        .branch .ph img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s
        }

    .branch:hover .ph img {
        transform: scale(1.14) rotate(1.5deg)
    }

    .branch .ph::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 40%,rgba(4,42,24,.65))
    }

.ribbon {
    position: absolute;
    top: 16px;
    left: -42px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 7px 50px;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 6px 14px rgba(0,0,0,.25)
}

.branch .bd {
    padding: 20px 24px 24px
}

    .branch .bd small {
        color: var(--green);
        font-weight: 700;
        letter-spacing: 1.5px;
        font-size: 11px;
        text-transform: uppercase
    }

    .branch .bd h3 {
        font-family: var(--serif);
        font-size: 21px;
        color: var(--ink);
        margin: 6px 0 12px
    }

    .branch .bd .open {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #E9F8F0;
        color: var(--green-d);
        font-size: 12px;
        font-weight: 700;
        padding: 7px 15px;
        border-radius: 20px
    }

        .branch .bd .open .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            animation: blink 1.4s infinite
        }

@keyframes blink {
    50% {
        opacity: .25
    }
}

/* ============ SECTION HEADS ============ */
section {
    padding: 90px 0
}

.sec-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap
}

    .sec-top .kick {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--red)
    }

        .sec-top .kick::before {
            content: '';
            width: 34px;
            height: 3px;
            background: var(--red);
            border-radius: 3px
        }

    .sec-top h2 {
        font-family: var(--serif);
        font-size: clamp(1.8rem,3.4vw,2.7rem);
        color: var(--ink);
        line-height: 1.2;
        margin-top: 12px
    }

        .sec-top h2 b {
            color: var(--green)
        }

    .sec-top p {
        max-width: 380px;
        font-size: 14.5px;
        line-height: 1.8
    }

/* ============ ABOUT ============ */
.about {
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center
}

.collage {
    position: relative;
    padding-bottom: 60px
}

    .collage .big {
        border-radius: 26px;
        overflow: hidden;
        box-shadow: var(--sh-lg);
        background: linear-gradient(135deg,var(--green),var(--deep))
    }

        .collage .big img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            transition: transform 1s
        }

    .collage:hover .big img {
        transform: scale(1.06)
    }

    .collage .small {
        position: absolute;
        right: -14px;
        bottom: 0;
        width: 46%;
        border-radius: 22px;
        overflow: hidden;
        border: 8px solid #fff;
        box-shadow: var(--sh-lg);
        background: var(--sand)
    }

        .collage .small img {
            width: 100%;
            height: 190px;
            object-fit: cover
        }

.exp-badge {
    position: absolute;
    left: -20px;
    top: -26px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 16px 34px rgba(237,50,55,.42);
    animation: bob 3.5s ease-in-out infinite;
    z-index: 2
}

@keyframes bob {
    50% {
        transform: translateY(-12px) rotate(6deg)
    }
}

.exp-badge b {
    font-family: var(--serif);
    font-size: 34px;
    display: block;
    line-height: 1
}

.exp-badge small {
    font-size: 10.5px;
    letter-spacing: 1.5px;
    font-weight: 700
}

.about-txt .kick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green)
}

    .about-txt .kick::before {
        content: '';
        width: 34px;
        height: 3px;
        background: var(--green);
        border-radius: 3px
    }

.about-txt h2 {
    font-family: var(--serif);
    font-size: clamp(1.7rem,3vw,2.4rem);
    color: var(--ink);
    margin: 14px 0 20px;
    line-height: 1.25
}

    .about-txt h2 em {
        color: var(--red);
        font-style: italic
    }

.about-txt p {
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 15px
}

.ticks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 30px
}

    .ticks li {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: 600;
        font-size: 13.5px;
        color: var(--ink)
    }

    .ticks i {
        color: #fff;
        background: var(--green);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 10px;
        flex-shrink: 0
    }

.about-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap
}

.sig {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--green-d)
}

    .sig small {
        display: block;
        font-family: var(--sans);
        font-style: normal;
        font-size: 11.5px;
        color: var(--gray);
        letter-spacing: 1px;
        margin-top: 3px
    }

/* ============ STATS (skewed band) ============ */
.stats {
    background: var(--deep);
    transform: skewY(-2deg);
    margin: 20px 0;
    padding: 64px 0;
    overflow: hidden;
    background-image: radial-gradient(rgba(255,255,255,.06) 1.5px,transparent 1.5px);
    background-size: 26px 26px
}

    .stats .container {
        transform: skewY(2deg);
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 24px
    }

.stat {
    text-align: center;
    color: #fff;
    padding: 10px;
    border-radius: 18px;
    transition: .4s
}

    .stat:hover {
        background: rgba(255,255,255,.06);
        transform: translateY(-6px)
    }

    .stat .ic {
        width: 58px;
        height: 58px;
        margin: 0 auto 14px;
        border: 2px solid rgba(255,255,255,.3);
        border-radius: 16px;
        display: grid;
        place-items: center;
        font-size: 22px;
        color: #7BE3AE;
        transition: .4s
    }

    .stat:hover .ic {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
        transform: rotate(-10deg) scale(1.1)
    }

    .stat h3 {
        font-family: var(--serif);
        font-size: 38px
    }

    .stat p {
        font-size: 13px;
        font-weight: 600;
        color: #a8cfba
    }

/* ============ PRODUCTS (drag carousel) ============ */
.products {
    background: var(--cream)
}

.car-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 44px
}

.car-btns {
    display: flex;
    gap: 10px
}

    .car-btns button {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 2px solid var(--ink);
        background: transparent;
        color: var(--ink);
        font-size: 15px;
        cursor: pointer;
        transition: .3s
    }

        .car-btns button:hover {
            background: var(--ink);
            color: #fff;
            transform: scale(1.1)
        }

.p-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 4px 26px;
    cursor: grab
}

    .p-track::-webkit-scrollbar {
        display: none
    }

    .p-track.drag {
        cursor: grabbing;
        scroll-snap-type: none
    }

.p-card {
    min-width: 330px;
    max-width: 330px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--sh);
    transition: var(--tr);
    position: relative
}

    .p-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--sh-lg)
    }

    .p-card .ph {
        height: 210px;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg,var(--green),var(--green-d))
    }

    .p-card:nth-child(even) .ph {
        background: linear-gradient(135deg,var(--red),var(--red-d))
    }

    .p-card .ph img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .9s
    }

    .p-card:hover .ph img {
        transform: scale(1.16) rotate(1.5deg)
    }

    .p-card .ph .tag {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(255,255,255,.94);
        color: var(--ink);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.5px;
        padding: 7px 15px;
        border-radius: 20px;
        z-index: 2;
        text-transform: uppercase
    }

    .p-card .ph .num {
        position: absolute;
        right: 14px;
        bottom: -6px;
        font-family: var(--serif);
        font-size: 74px;
        font-weight: 800;
        color: rgba(255,255,255,.85);
        z-index: 2;
        font-style: italic
    }

    .p-card .bd {
        padding: 24px 26px 28px
    }

    .p-card h3 {
        font-family: var(--serif);
        font-size: 22px;
        color: var(--ink);
        margin-bottom: 10px
    }

    .p-card p {
        font-size: 13.8px;
        line-height: 1.75
    }

    .p-card .go {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-top: 16px;
        font-weight: 800;
        font-size: 13px;
        color: var(--green-d)
    }

        .p-card .go i {
            transition: transform .35s
        }

    .p-card:hover .go i {
        transform: translateX(7px)
    }

    .p-card .go:hover {
        color: var(--red)
    }

.p-progress {
    height: 4px;
    background: #e5dfcf;
    border-radius: 4px;
    margin-top: 6px;
    overflow: hidden
}

    .p-progress span {
        display: block;
        height: 100%;
        width: 20%;
        background: linear-gradient(90deg,var(--green),var(--red));
        border-radius: 4px;
        transition: width .25s
    }

/* ============ REVIEWS ============ */
.reviews {
    background: #fff
}

.rev-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: center
}

.rate-card {
    background: var(--cream);
    border-radius: 26px;
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--sh);
    position: relative;
    overflow: hidden
}

    .rate-card::before {
        content: '\201C';
        position: absolute;
        top: -30px;
        left: 14px;
        font-family: var(--serif);
        font-size: 170px;
        color: rgba(0,168,89,.12)
    }

    .rate-card .n {
        font-family: var(--serif);
        font-size: 72px;
        font-weight: 800;
        color: var(--ink);
        line-height: 1
    }

    .rate-card .st {
        color: #FFB400;
        font-size: 21px;
        letter-spacing: 4px;
        margin: 12px 0
    }

    .rate-card b {
        color: var(--ink)
    }

    .rate-card small {
        display: block;
        margin-top: 4px
    }

.g-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    border: 1.5px solid #e5dfcf;
    background: #fff;
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #555
}

    .g-chip .gg {
        font-weight: 800
    }

.g1 {
    color: #4285F4
}

.g2 {
    color: #EA4335
}

.g3 {
    color: #FBBC05
}

.g4 {
    color: #4285F4
}

.g5 {
    color: #34A853
}

.quote-box {
    position: relative
}

.quote-mark {
    font-family: var(--serif);
    font-size: 110px;
    line-height: .6;
    color: var(--red);
    opacity: .9
}

.r-slide {
    display: none;
    animation: qin .7s ease
}

    .r-slide.on {
        display: block
    }

@keyframes qin {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.r-slide blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.15rem,2.1vw,1.55rem);
    line-height: 1.75;
    color: var(--ink)
}

.r-who {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px
}

    .r-who img {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--green);
        padding: 2px
    }

    .r-who b {
        display: block;
        color: var(--ink);
        font-size: 15px
    }

    .r-who small {
        color: var(--green-d);
        font-weight: 600
    }

    .r-who .st {
        color: #FFB400;
        font-size: 13px;
        letter-spacing: 2px;
        margin-top: 2px
    }

.r-ctrl {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px
}

    .r-ctrl button {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 0;
        background: var(--green);
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: .3s
    }

        .r-ctrl button:last-child {
            background: var(--red)
        }

        .r-ctrl button:hover {
            transform: scale(1.14) rotate(8deg)
        }

.r-dots {
    display: flex;
    gap: 8px
}

    .r-dots span {
        width: 10px;
        height: 10px;
        border-radius: 20px;
        background: #d8d2c2;
        cursor: pointer;
        transition: .3s
    }

        .r-dots span.on {
            width: 30px;
            background: var(--green)
        }

/* ============ PROJECTS ============ */
.projects {
    background: var(--cream)
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.proj {
    position: relative;
    height: 280px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg,var(--deep),var(--deep2));
    box-shadow: var(--sh)
}

    .proj img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(.2,.8,.3,1)
    }

    .proj:hover img {
        transform: scale(1.14) rotate(1deg)
    }

    .proj::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(transparent 35%,rgba(4,42,24,.88));
        transition: .5s
    }

    .proj:hover::after {
        background: linear-gradient(transparent 15%,rgba(4,42,24,.94))
    }

    .proj .idx {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
        background: rgba(255,255,255,.92);
        color: var(--ink);
        font-family: var(--serif);
        font-weight: 800;
        font-size: 14px;
        padding: 6px 14px;
        border-radius: 12px;
        transition: .4s
    }

    .proj:hover .idx {
        background: var(--red);
        color: #fff;
        transform: rotate(-6deg) scale(1.08)
    }

    .proj .info {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 24px;
        color: #fff;
        transform: translateY(16px);
        transition: .5s
    }

    .proj:hover .info {
        transform: none
    }

    .proj .info small {
        color: #7BE3AE;
        font-weight: 800;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase
    }

    .proj .info h3 {
        font-family: var(--serif);
        font-size: 20px;
        margin-top: 6px
    }

    .proj .info .more {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        margin-top: 12px;
        font-size: 12.5px;
        font-weight: 700;
        opacity: 0;
        transform: translateY(12px);
        transition: .45s .1s
    }

    .proj:hover .more {
        opacity: 1;
        transform: none
    }

/* ============ SUPPORT ============ */
.support {
    padding: 20px 0 90px;
    background: var(--cream)
}

.sup-box {
    background: linear-gradient(120deg,var(--deep),var(--deep2));
    border-radius: 30px;
    padding: 52px 56px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(rgba(255,255,255,.07) 1.5px,transparent 1.5px);
    background-size: 24px 24px;
    box-shadow: var(--sh-lg)
}

    .sup-box::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(0,168,89,.4),transparent 70%)
    }

.sup-left {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1
}

.sup-ic {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: var(--green);
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(0,168,89,.45);
    animation: bob 3s infinite
}

.sup-left h3 {
    font-family: var(--serif);
    font-size: 26px
}

.sup-left p {
    color: #a8cfba;
    font-size: 14px;
    margin-top: 4px
}

.sup-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.sup-num {
    font-family: var(--serif);
    font-size: clamp(1.4rem,2.6vw,2rem);
    font-weight: 800
}

    .sup-num i {
        color: #FFD166;
        margin-right: 6px
    }

.btn-white {
    background: #fff;
    color: var(--deep)
}

    .btn-white:hover {
        transform: translateY(-4px);
        background: var(--red);
        color: #fff
    }

/* ============ FOOTER ============ */
.wave {
    background: var(--cream);
    line-height: 0
}

    .wave svg {
        display: block;
        width: 100%;
        height: 70px
    }

footer {
    background: var(--deep);
    color: #a8cfba;
    padding: 40px 0 0;
    position: relative
}

.f-grid {
    display: grid;
    grid-template-columns: 1.95fr 1fr 1.95fr;
    gap: 44px;
    padding-bottom: 50px
}

.f-col h4 {
    font-family: var(--serif);
    color: #fff;
    font-size: 19px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px
}

    .f-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 38px;
        height: 3px;
        border-radius: 3px;
        background: var(--red)
    }

.f-col .flogo {
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: inline-block;
    margin-bottom: 18px
}

    .f-col .flogo svg {
        height: 38px
    }

.f-col p {
    font-size: 13.8px;
    line-height: 1.85
}

.f-links li {
    margin-bottom: 10px
}

.f-links a {
    font-size: 13.8px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .3s
}

    .f-links a i {
        font-size: 10px;
        color: var(--red)
    }

    .f-links a:hover {
        color: #fff;
        padding-left: 6px
    }

        .f-links a:hover i {
            color: #7BE3AE
        }

.f-contact li {
    display: flex;
    gap: 13px;
    margin-bottom: 15px;
    font-size: 13.5px;
    line-height: 1.65
}

.f-contact i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,168,89,.16);
    color: #7BE3AE;
    display: grid;
    place-items: center;
    font-size: 13px
}

.f-contact a {
    color: #d9efe3;
    transition: .3s
}

    .f-contact a:hover {
        color: #7BE3AE
    }

.socials {
    display: flex;
    gap: 11px;
    margin-top: 20px
}

    .socials a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255,255,255,.08);
        display: grid;
        place-items: center;
        color: #cfe8da;
        transition: .4s
    }

        .socials a:hover {
            background: var(--green);
            color: #fff;
            transform: translateY(-6px) rotate(10deg)
        }

.map-box {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.12);
    margin-top: 14px;
    transition: .4s
}

    .map-box:hover {
        border-color: var(--green);
        transform: scale(1.015)
    }

    .map-box iframe {
        width: 100%;
        height: 150px;
        border: 0;
        display: block;
        filter: grayscale(.3)
    }

/* ============ SPLIT COPYRIGHT BAR ============ */
.copybar {
    border-top: 1px solid rgba(255,255,255,.1);
    background: #042A18
}

    .copybar .container {
        display: grid;
        grid-template-columns: 1.25fr auto;
        gap: 30px;
        align-items: center;
        padding: 28px 0
    }

.cb-sec1 {
    font-size: 13px;
    line-height: 1.8
}

    .cb-sec1 b {
        color: #7BE3AE
    }

    .cb-sec1 .pols {
        margin-top: 9px;
        display: flex;
        flex-wrap: wrap
    }

        .cb-sec1 .pols a {
            font-size: 12.5px;
            color: #8fbfa6;
            padding: 0 13px;
            border-right: 1px solid rgba(255,255,255,.15);
            transition: .3s
        }

            .cb-sec1 .pols a:first-child {
                padding-left: 0
            }

            .cb-sec1 .pols a:last-child {
                border: 0
            }

            .cb-sec1 .pols a:hover {
                color: #fff
            }

    .cb-sec1 .credit {
        margin-top: 8px;
        font-size: 12.5px;
        color: #7da68f
    }

        .cb-sec1 .credit b {
            color: var(--red)
        }

.cb-sec2 {
    display: flex;
    gap: 20px;
    align-items: center
}

.chip {
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: .4s;
    box-shadow: 0 10px 24px rgba(0,0,0,.3)
}

    .chip:hover {
        transform: translateY(-7px) scale(1.05)
    }

    .chip svg {
        height: 32px
    }

    .chip small {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.2px;
        color: var(--gray);
        text-transform: uppercase
    }

    .chip.cis {
        flex-direction: row;
        gap: 12px;
        padding: 14px 22px;
        background: linear-gradient(135deg,#E9F8F0,#fff)
    }

.cis-ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg,var(--green),var(--red));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 800;
    font-size: 19px
}

.cis-tx b {
    display: block;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.3
}

.cis-tx small {
    font-size: 9.5px;
    color: var(--red);
    font-weight: 800;
    letter-spacing: .8px
}

/* ============ FLOATING BUTTONS ============ */
#toTop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(237,50,55,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: .4s;
    z-index: 900
}

    #toTop.show {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    #toTop:hover {
        background: var(--deep);
        transform: translateY(-5px)
    }

#wa {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 12px 28px rgba(37,211,102,.45);
    z-index: 900;
    transition: .35s;
    animation: bob 2.8s infinite
}

    #wa:hover {
        transform: scale(1.12)
    }

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .branch-grid {
        grid-template-columns: 1fr 1fr
    }

    .branch:last-child {
        grid-column: 1/-1;
        max-width: calc(50% - 12px);
        margin: 0 auto;
        width: 100%
    }

    .proj-grid {
        grid-template-columns: 1fr 1fr
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }

    .rev-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .rate-card {
        max-width: 360px;
        margin: auto
    }
}

@media(max-width:900px) {
    .burger {
        display: grid;
        place-items: center
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 24px 40px rgba(0,0,0,.14);
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s;
        border-radius: 0 0 20px 20px
    }

        nav.open {
            max-height: 620px;
            overflow-y: auto
        }

        nav > ul {
            flex-direction: column;
            padding: 16px
        }

            nav > ul > li > a {
                justify-content: space-between;
                border-bottom: 1px solid #f2ede1;
                border-radius: 8px
            }

    .drop {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        border: 0;
        padding: 4px 0 10px 14px
    }

    nav li.tapped .drop {
        display: block;
        animation: qin .4s
    }

    nav li.tapped > a i {
        transform: rotate(180deg)
    }

    .nav-cta .btn {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px
    }

    .stats .container {
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .hero {
        border-radius: 0 0 20px 20px
    }

    .hero-side {
        display: none
    }

    .sup-box {
        padding: 40px 30px
    }
}

@media(max-width:620px) {
    .branch-grid, .proj-grid {
        grid-template-columns: 1fr
    }

    .branch:last-child {
        max-width: none
    }

    .tb-links {
        display: none
    }

    .topbar .container {
        justify-content: center
    }

    .ticks {
        grid-template-columns: 1fr
    }

    .p-card {
        min-width: 280px;
        max-width: 280px
    }

    .copybar .container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center
    }

    .cb-sec1 .pols {
        justify-content: center
    }

    .cb-sec2 {
        flex-wrap: wrap;
        justify-content: center
    }

    .f-grid {
        grid-template-columns: 1fr
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 100px 0 110px
    }

    .slide {
        position: relative;
        display: none
    }

        .slide.on {
            display: flex
        }

    .collage .big img {
        height: 340px
    }
}
